home *** CD-ROM | disk | FTP | other *** search
/ Mac Format 1997 January / macformat46.iso / File Maker Pro 3.0 Tutorial / File Maker Pro 3.0 / Templates / FileMaker And Apple Events / Syntax Examples / Events / Go To Examples < prev    next >
Text File  |  1996-06-05  |  516b  |  16 lines

  1. tell application "FileMaker Pro"
  2.     go to window 1
  3.     go to record 4
  4.     go to layout 2 of database 2
  5.     go to cell 3 of record 5
  6.     go to request 1
  7.     
  8.     go to (create record) -- make a newly created record active
  9.     go to (duplicate record 1) -- make a newly duplicated record active
  10.     
  11.     go to record after current record -- go to next record
  12.     go to record before current record -- go to previous record
  13.     
  14.     go to layout after current layout -- go to next layout
  15.     go to layout before current layout -- go to previous layout
  16. end tell